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

master
Chris Beams 16 years ago
parent b8f712621d
commit 3f196517f9
  1. 2
      org.springframework.config.java/.classpath
  2. 11
      org.springframework.config.java/.project
  3. 2
      org.springframework.config.java/.springBeans
  4. 6
      org.springframework.config.java/src/test/java/org/springframework/config/java/support/package-info.java
  5. 2
      org.springframework.config.java/src/test/java/org/springframework/context/annotation/configuration/AbstractBeanDefinitionConfigurationClassTests.java
  6. 2
      org.springframework.config.java/src/test/java/org/springframework/context/annotation/configuration/AbstractJavaConfigTests.java
  7. 2
      org.springframework.config.java/src/test/java/org/springframework/context/annotation/configuration/AspectTests.java
  8. 2
      org.springframework.config.java/src/test/java/org/springframework/context/annotation/configuration/AutowiredConfigurationTests.java
  9. 0
      org.springframework.config.java/src/test/java/org/springframework/context/annotation/configuration/AutowiredConfigurationTests.xml
  10. 2
      org.springframework.config.java/src/test/java/org/springframework/context/annotation/configuration/BasicTests.java
  11. 2
      org.springframework.config.java/src/test/java/org/springframework/context/annotation/configuration/ImportTests.java
  12. 2
      org.springframework.config.java/src/test/java/org/springframework/context/annotation/configuration/PolymorphicConfigurationTests.java
  13. 2
      org.springframework.config.java/src/test/java/org/springframework/context/annotation/configuration/ScopingTests.java
  14. 0
      org.springframework.config.java/src/test/java/org/springframework/context/annotation/configuration/ValueInjectionTests.xml
  15. 0
      org.springframework.config.java/src/test/java/org/springframework/context/annotation/configuration/aspectj-autoproxy-config.xml
  16. 10
      org.springframework.config.java/src/test/java/org/springframework/context/annotation/configuration/package-info.java

@ -1,6 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="var" path="CLOVER_RUNTIME"/>
<classpathentry including="**/*.java" kind="src" path="src/main/java"/>
<classpathentry kind="src" output="target/test-classes" path="src/test/java"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
@ -8,6 +7,7 @@
<classpathentry kind="var" path="IVY_CACHE/org.junit/com.springsource.org.junit/4.5.0/com.springsource.org.junit-4.5.0.jar" sourcepath="/IVY_CACHE/org.junit/com.springsource.org.junit/4.5.0/com.springsource.org.junit-sources-4.5.0.jar"/>
<classpathentry kind="var" path="IVY_CACHE/org.apache.commons/com.springsource.org.apache.commons.logging/1.1.1/com.springsource.org.apache.commons.logging-1.1.1.jar" sourcepath="/IVY_CACHE/org.apache.commons/com.springsource.org.apache.commons.logging/1.1.1/com.springsource.org.apache.commons.logging-sources-1.1.1.jar"/>
<classpathentry kind="var" path="IVY_CACHE/net.sourceforge.cglib/com.springsource.net.sf.cglib/2.1.3/com.springsource.net.sf.cglib-2.1.3.jar" sourcepath="/IVY_CACHE/net.sourceforge.cglib/com.springsource.net.sf.cglib/2.1.3/com.springsource.net.sf.cglib-sources-2.1.3.jar"/>
<classpathentry kind="var" path="IVY_CACHE/org.aspectj/com.springsource.org.aspectj.weaver/1.6.2.RELEASE/com.springsource.org.aspectj.weaver-1.6.2.RELEASE.jar" sourcepath="IVY_CACHE/org.aspectj/com.springsource.org.aspectj.weaver/1.6.2.RELEASE/com.springsource.org.aspectj.weaver-sources-1.6.2.RELEASE.jar"/>
<classpathentry combineaccessrules="false" kind="src" path="/org.springframework.context"/>
<classpathentry combineaccessrules="false" kind="src" path="/org.springframework.beans"/>
<classpathentry combineaccessrules="false" kind="src" path="/org.springframework.core"/>

@ -10,21 +10,11 @@
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.cenqua.clover.core.prejavabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.cenqua.clover.core.postjavabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.wst.validation.validationbuilder</name>
<arguments>
@ -42,6 +32,5 @@
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
<nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
<nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
<nature>com.cenqua.clover.core.clovernature</nature>
</natures>
</projectDescription>

@ -7,8 +7,6 @@
</configSuffixes>
<enableImports><![CDATA[false]]></enableImports>
<configs>
<config>src/test/java/test/basic/AutowiredConfigurationTests.xml</config>
<config>src/test/java/test/basic/ValueInjectionTests.xml</config>
</configs>
<configSets>
</configSets>

@ -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 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;
Loading…
Cancel
Save