1. 29 12月, 2012 1 次提交
  2. 05 12月, 2012 1 次提交
    • S
      Re-enable and document @Ignore'd tests · 025d111e
      Sam Brannen 提交于
      Documented why static nested test cases in the spring-test module are
      ignored, explaining that such "TestCase classes are run manually by the
      enclosing test class". Prior to the migration to Gradle (i.e., with
      Spring Build), these tests would not have been picked up by the test
      suite since they end with a "TestCase" suffix instead of "Test" or
      "Tests".
      
      Re-enabled HibernateMultiEntityManagerFactoryIntegrationTests.
      
      For the remaining tests that were disabled as a result of the migration
      to Gradle, comments have been added to the @Ignore declarations.
      
      Issue: SPR-8116, SPR-9398
      025d111e
  3. 31 1月, 2012 2 次提交
    • C
      Mark remaining @Ignored tests with 'TODO SPR-8116' · ddf8eaf3
      Chris Beams 提交于
      Each of these tests began failing during the Gradle build porting
      process. None seem severe, many are likely due to classpath issues.
      
      In the case of TestNG support, this needs to be added to the Gradle
      build in order to execute these tests. See SPR-8116.txt
      ddf8eaf3
    • C
      Rename modules {org.springframework.*=>spring-*} · 02a4473c
      Chris Beams 提交于
      This renaming more intuitively expresses the relationship between
      subprojects and the JAR artifacts they produce.
      
      Tracking history across these renames is possible, but it requires
      use of the --follow flag to `git log`, for example
      
          $ git log spring-aop/src/main/java/org/springframework/aop/Advisor.java
      
      will show history up until the renaming event, where
      
          $ git log --follow spring-aop/src/main/java/org/springframework/aop/Advisor.java
      
      will show history for all changes to the file, before and after the
      renaming.
      
      See http://chrisbeams.com/git-diff-across-renamed-directories
      02a4473c