Browse Source

renamed .testsuite -> .integration-tests

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@492 50f2f4bb-b051-0410-bef5-90022cba6387
pull/1/head
Chris Beams 17 years ago
parent
commit
91d7b44c47
  1. 2
      build-spring-framework/build.xml
  2. 0
      org.springframework.integration-tests/.classpath
  3. 2
      org.springframework.integration-tests/.project
  4. 0
      org.springframework.integration-tests/.settings/org.eclipse.jdt.core.prefs
  5. 0
      org.springframework.integration-tests/.settings/org.eclipse.jdt.ui.prefs
  6. 0
      org.springframework.integration-tests/.settings/org.springframework.ide.eclipse.core.prefs
  7. 2
      org.springframework.integration-tests/build.xml
  8. 0
      org.springframework.integration-tests/ivy.xml
  9. 0
      org.springframework.integration-tests/pom.xml
  10. 0
      org.springframework.integration-tests/src/test/java/org/springframework/aop/config/AopNamespaceHandlerScopeIntegrationTests-context.xml
  11. 0
      org.springframework.integration-tests/src/test/java/org/springframework/aop/config/AopNamespaceHandlerScopeIntegrationTests.java
  12. 0
      org.springframework.integration-tests/src/test/java/org/springframework/aop/framework/autoproxy/AdvisorAutoProxyCreatorIntegrationTests-context.xml
  13. 0
      org.springframework.integration-tests/src/test/java/org/springframework/aop/framework/autoproxy/AdvisorAutoProxyCreatorIntegrationTests.java
  14. 0
      org.springframework.integration-tests/src/test/java/org/springframework/context/annotation/ClassPathBeanDefinitionScannerScopeIntegrationTests.java
  15. 0
      org.springframework.integration-tests/src/test/java/org/springframework/context/annotation/ltw/ComponentScanningWithLTWTests.java
  16. 0
      org.springframework.integration-tests/src/test/java/org/springframework/context/annotation/ltw/ComponentScanningWithLTWTests.xml
  17. 0
      org.springframework.integration-tests/src/test/java/test/advice/CountingAfterReturningAdvice.java
  18. 0
      org.springframework.integration-tests/src/test/java/test/advice/CountingBeforeAdvice.java
  19. 0
      org.springframework.integration-tests/src/test/java/test/advice/MethodCounter.java
  20. 0
      org.springframework.integration-tests/src/test/java/test/beans/Colour.java
  21. 0
      org.springframework.integration-tests/src/test/java/test/beans/INestedTestBean.java
  22. 0
      org.springframework.integration-tests/src/test/java/test/beans/IOther.java
  23. 0
      org.springframework.integration-tests/src/test/java/test/beans/ITestBean.java
  24. 0
      org.springframework.integration-tests/src/test/java/test/beans/IndexedTestBean.java
  25. 0
      org.springframework.integration-tests/src/test/java/test/beans/NestedTestBean.java
  26. 0
      org.springframework.integration-tests/src/test/java/test/beans/Pet.java
  27. 0
      org.springframework.integration-tests/src/test/java/test/beans/TestBean.java
  28. 0
      org.springframework.integration-tests/src/test/java/test/interceptor/NopInterceptor.java
  29. 0
      org.springframework.integration-tests/src/test/java/test/interceptor/SerializableNopInterceptor.java
  30. 0
      org.springframework.integration-tests/src/test/resources/log4j.xml
  31. 0
      org.springframework.integration-tests/src/test/resources/org/springframework/util/testlog4j.properties
  32. 0
      org.springframework.integration-tests/src/test/resources/org/springframework/web/util/testlog4j.properties
  33. 0
      org.springframework.integration-tests/src/test/resources/testlog4j.properties
  34. 4
      org.springframework.integration-tests/template.mf
  35. 0
      org.springframework.integration-tests/testsuite.iml
  36. 4
      org.springframework.testsuite/template.mf
  37. 12
      spring-framework.ipr

2
build-spring-framework/build.xml

@ -20,7 +20,7 @@ @@ -20,7 +20,7 @@
<pathelement location="../org.springframework.web.portlet"/>
<pathelement location="../org.springframework.test"/>
<pathelement location="../org.springframework.spring-library"/>
<pathelement location="../org.springframework.testsuite"/>
<pathelement location="../org.springframework.integration-tests"/>
</path>
<property file="${basedir}/../build.properties"/>

0
org.springframework.testsuite/.classpath → org.springframework.integration-tests/.classpath

2
org.springframework.testsuite/.project → org.springframework.integration-tests/.project

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>org.springframework.testsuite</name>
<name>org.springframework.integration-tests</name>
<comment></comment>
<projects>
</projects>

0
org.springframework.testsuite/.settings/org.eclipse.jdt.core.prefs → org.springframework.integration-tests/.settings/org.eclipse.jdt.core.prefs

0
org.springframework.testsuite/.settings/org.eclipse.jdt.ui.prefs → org.springframework.integration-tests/.settings/org.eclipse.jdt.ui.prefs

0
org.springframework.testsuite/.settings/org.springframework.ide.eclipse.core.prefs → org.springframework.integration-tests/.settings/org.springframework.ide.eclipse.core.prefs

2
org.springframework.testsuite/build.xml → org.springframework.integration-tests/build.xml

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="org.springframework.testsuite">
<project name="org.springframework.integration-tests">
<property file="${basedir}/../build.properties"/>
<import file="${basedir}/../build-spring-framework/package-bundle.xml"/>
<import file="${basedir}/../spring-build/standard/default.xml"/>

0
org.springframework.testsuite/ivy.xml → org.springframework.integration-tests/ivy.xml

0
org.springframework.testsuite/pom.xml → org.springframework.integration-tests/pom.xml

0
org.springframework.testsuite/src/test/java/org/springframework/aop/config/AopNamespaceHandlerScopeIntegrationTests-context.xml → org.springframework.integration-tests/src/test/java/org/springframework/aop/config/AopNamespaceHandlerScopeIntegrationTests-context.xml

0
org.springframework.testsuite/src/test/java/org/springframework/aop/config/AopNamespaceHandlerScopeIntegrationTests.java → org.springframework.integration-tests/src/test/java/org/springframework/aop/config/AopNamespaceHandlerScopeIntegrationTests.java

0
org.springframework.testsuite/src/test/java/org/springframework/aop/framework/autoproxy/AdvisorAutoProxyCreatorIntegrationTests-context.xml → org.springframework.integration-tests/src/test/java/org/springframework/aop/framework/autoproxy/AdvisorAutoProxyCreatorIntegrationTests-context.xml

0
org.springframework.testsuite/src/test/java/org/springframework/aop/framework/autoproxy/AdvisorAutoProxyCreatorIntegrationTests.java → org.springframework.integration-tests/src/test/java/org/springframework/aop/framework/autoproxy/AdvisorAutoProxyCreatorIntegrationTests.java

0
org.springframework.testsuite/src/test/java/org/springframework/context/annotation/ClassPathBeanDefinitionScannerScopeIntegrationTests.java → org.springframework.integration-tests/src/test/java/org/springframework/context/annotation/ClassPathBeanDefinitionScannerScopeIntegrationTests.java

0
org.springframework.testsuite/src/test/java/org/springframework/context/annotation/ltw/ComponentScanningWithLTWTests.java → org.springframework.integration-tests/src/test/java/org/springframework/context/annotation/ltw/ComponentScanningWithLTWTests.java

0
org.springframework.testsuite/src/test/java/org/springframework/context/annotation/ltw/ComponentScanningWithLTWTests.xml → org.springframework.integration-tests/src/test/java/org/springframework/context/annotation/ltw/ComponentScanningWithLTWTests.xml

0
org.springframework.testsuite/src/test/java/test/advice/CountingAfterReturningAdvice.java → org.springframework.integration-tests/src/test/java/test/advice/CountingAfterReturningAdvice.java

0
org.springframework.testsuite/src/test/java/test/advice/CountingBeforeAdvice.java → org.springframework.integration-tests/src/test/java/test/advice/CountingBeforeAdvice.java

0
org.springframework.testsuite/src/test/java/test/advice/MethodCounter.java → org.springframework.integration-tests/src/test/java/test/advice/MethodCounter.java

0
org.springframework.testsuite/src/test/java/test/beans/Colour.java → org.springframework.integration-tests/src/test/java/test/beans/Colour.java

0
org.springframework.testsuite/src/test/java/test/beans/INestedTestBean.java → org.springframework.integration-tests/src/test/java/test/beans/INestedTestBean.java

0
org.springframework.testsuite/src/test/java/test/beans/IOther.java → org.springframework.integration-tests/src/test/java/test/beans/IOther.java

0
org.springframework.testsuite/src/test/java/test/beans/ITestBean.java → org.springframework.integration-tests/src/test/java/test/beans/ITestBean.java

0
org.springframework.testsuite/src/test/java/test/beans/IndexedTestBean.java → org.springframework.integration-tests/src/test/java/test/beans/IndexedTestBean.java

0
org.springframework.testsuite/src/test/java/test/beans/NestedTestBean.java → org.springframework.integration-tests/src/test/java/test/beans/NestedTestBean.java

0
org.springframework.testsuite/src/test/java/test/beans/Pet.java → org.springframework.integration-tests/src/test/java/test/beans/Pet.java

0
org.springframework.testsuite/src/test/java/test/beans/TestBean.java → org.springframework.integration-tests/src/test/java/test/beans/TestBean.java

0
org.springframework.testsuite/src/test/java/test/interceptor/NopInterceptor.java → org.springframework.integration-tests/src/test/java/test/interceptor/NopInterceptor.java

0
org.springframework.testsuite/src/test/java/test/interceptor/SerializableNopInterceptor.java → org.springframework.integration-tests/src/test/java/test/interceptor/SerializableNopInterceptor.java

0
org.springframework.testsuite/src/test/resources/log4j.xml → org.springframework.integration-tests/src/test/resources/log4j.xml

0
org.springframework.testsuite/src/test/resources/org/springframework/util/testlog4j.properties → org.springframework.integration-tests/src/test/resources/org/springframework/util/testlog4j.properties

0
org.springframework.testsuite/src/test/resources/org/springframework/web/util/testlog4j.properties → org.springframework.integration-tests/src/test/resources/org/springframework/web/util/testlog4j.properties

0
org.springframework.testsuite/src/test/resources/testlog4j.properties → org.springframework.integration-tests/src/test/resources/testlog4j.properties

4
org.springframework.integration-tests/template.mf

@ -0,0 +1,4 @@ @@ -0,0 +1,4 @@
Bundle-SymbolicName: org.springframework.integration-tests
Bundle-Name: Spring Framework Integration Tests
Bundle-Vendor: SpringSource
Bundle-ManifestVersion: 2

0
org.springframework.testsuite/testsuite.iml → org.springframework.integration-tests/testsuite.iml

4
org.springframework.testsuite/template.mf

@ -1,4 +0,0 @@ @@ -1,4 +0,0 @@
Bundle-SymbolicName: org.springframework.testsuite
Bundle-Name: Spring Testsuite
Bundle-Vendor: SpringSource
Bundle-ManifestVersion: 2

12
spring-framework.ipr

@ -222,12 +222,12 @@ @@ -222,12 +222,12 @@
<module name="context-support" />
<module name="jdbc" />
<module name="jms" />
<module name="org.springframework.testsuite" />
<module name="org.springframework.integration-tests" />
<module name="beans" />
<module name="context" />
<module name="orm" />
<module name="web-servlet" />
<module name="testsuite" />
<module name="integration-tests" />
<module name="web">
<files>
<file url="file://$PROJECT_DIR$/org.springframework.web/src/test/resources/org/springframework/web/context/request/requestScopeTests.xml" />
@ -239,13 +239,13 @@ @@ -239,13 +239,13 @@
</facet-type>
<facet-type id="web">
<modules>
<module name="org.springframework.testsuite" />
<module name="testsuite" />
<module name="org.springframework.integration-tests" />
<module name="integration-tests" />
</modules>
</facet-type>
<facet-type id="jpa">
<modules>
<module name="testsuite" />
<module name="integration-tests" />
</modules>
</facet-type>
<facet-type id="Grails" />
@ -533,7 +533,7 @@ @@ -533,7 +533,7 @@
<module fileurl="file://$PROJECT_DIR$/org.springframework.jms/jms.iml" filepath="$PROJECT_DIR$/org.springframework.jms/jms.iml" />
<module fileurl="file://$PROJECT_DIR$/org.springframework.orm/orm.iml" filepath="$PROJECT_DIR$/org.springframework.orm/orm.iml" />
<module fileurl="file://$PROJECT_DIR$/org.springframework.test/test.iml" filepath="$PROJECT_DIR$/org.springframework.test/test.iml" />
<module fileurl="file://$PROJECT_DIR$/org.springframework.testsuite/testsuite.iml" filepath="$PROJECT_DIR$/org.springframework.testsuite/testsuite.iml" />
<module fileurl="file://$PROJECT_DIR$/org.springframework.integration-tests/integration-tests.iml" filepath="$PROJECT_DIR$/org.springframework.integration-tests/integration-tests.iml" />
<module fileurl="file://$PROJECT_DIR$/org.springframework.transaction/transaction.iml" filepath="$PROJECT_DIR$/org.springframework.transaction/transaction.iml" />
<module fileurl="file://$PROJECT_DIR$/org.springframework.web/web.iml" filepath="$PROJECT_DIR$/org.springframework.web/web.iml" />
<module fileurl="file://$PROJECT_DIR$/org.springframework.web.portlet/web-portlet.iml" filepath="$PROJECT_DIR$/org.springframework.web.portlet/web-portlet.iml" />

Loading…
Cancel
Save