moved Scope annotation to local test package

This commit is contained in:
Juergen Hoeller 2009-04-19 20:35:32 +00:00
parent c230c188be
commit 64321755b6
2 changed files with 2 additions and 3 deletions

View File

@ -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;
*/
public class AnnotationMetadataTests extends TestCase {
public void testStandardAnnotationMetadata() throws IOException {
StandardAnnotationMetadata annInfo = new StandardAnnotationMetadata(AnnotatedComponent.class);
doTestAnnotationInfo(annInfo);

View File

@ -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;