Browse Source

moved Scope annotation to local test package

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@1029 50f2f4bb-b051-0410-bef5-90022cba6387
pull/1/head
Juergen Hoeller 17 years ago
parent
commit
1b8294a379
  1. 3
      org.springframework.core/src/test/java/org/springframework/core/type/AnnotationMetadataTests.java
  2. 2
      org.springframework.core/src/test/java/org/springframework/core/type/Scope.java

3
org.springframework.core/src/test/java/org/springframework/core/type/AnnotationMetadataTests.java

@ -27,9 +27,9 @@ import java.util.Set; @@ -27,9 +27,9 @@ import java.util.Set;
import junit.framework.TestCase;
import org.junit.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.context.annotation.Scope;
import org.springframework.core.type.classreading.MetadataReader;
import org.springframework.core.type.classreading.MetadataReaderFactory;
import org.springframework.core.type.classreading.SimpleMetadataReaderFactory;
@ -40,7 +40,6 @@ import org.springframework.stereotype.Component; @@ -40,7 +40,6 @@ import org.springframework.stereotype.Component;
*/
public class AnnotationMetadataTests extends TestCase {
public void testStandardAnnotationMetadata() throws IOException {
StandardAnnotationMetadata annInfo = new StandardAnnotationMetadata(AnnotatedComponent.class);
doTestAnnotationInfo(annInfo);

2
org.springframework.core/src/test/java/org/springframework/context/annotation/Scope.java → org.springframework.core/src/test/java/org/springframework/core/type/Scope.java

@ -14,7 +14,7 @@ @@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.context.annotation;
package org.springframework.core.type;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
Loading…
Cancel
Save