1. 20 8月, 2019 1 次提交
  2. 17 8月, 2019 2 次提交
  3. 24 5月, 2019 1 次提交
  4. 09 5月, 2019 1 次提交
    • P
      Remove '.*' imports from tests · 816bbee8
      Phillip Webb 提交于
      Organize test imports to expand all '.*' static imports into
      fully qualified imports.
      
      This update will allow us to use additional checkstyle rules in
      the future, and will also help if we migrate fully to AssertJ.
      816bbee8
  5. 08 5月, 2019 1 次提交
    • P
      Migrate away from ExpectedException (#22922) · d7320de8
      Phil Webb 提交于
      * Add limited checkstyles to test code
      
      Add a limited set of checkstyle rules to the test codebase to improve
      code consistency.
      
      * Fix checksyle violations in test code
      
      * Organize imports to fix checkstyle for test code
      
      * Migrate to assertThatExceptionOfType
      
      Migrate aware from ExpectedException rules to AssertJ exception
      assertions. Also include a checkstyle rules to ensure that the
      the ExpectedException is not accidentally used in the future.
      
      See gh-22894
      d7320de8
  6. 06 5月, 2019 1 次提交
  7. 23 3月, 2019 1 次提交
  8. 22 3月, 2019 1 次提交
  9. 21 10月, 2014 1 次提交
  10. 09 2月, 2014 1 次提交
  11. 04 2月, 2014 1 次提交
    • S
      Ensure all tests are executed in the Gradle build · b8ed2f49
      Sam Brannen 提交于
      Prior to this commit several test classes named "*Test" were not
      recognized as tests by the Gradle build. This is due to the configured
      inclusion of '**/*Tests.*' which follows Spring's naming convention for
      test classes.
      
      This commit addresses this issue by:
      
       - Renaming real test classes consistently to "*Tests".
       - Renaming internal test classes to "*TestCase".
       - Renaming @WebTest to @WebTestStereotype.
       - Disabling broken tests in AnnoDrivenStaticEntityMockingControlTest.
       - Modifying the Gradle build configuration so that classes ending in
         either "*Tests" or "*Test" are considered test classes.
      
      Issue: SPR-11384
      b8ed2f49
  12. 26 1月, 2013 1 次提交
  13. 04 1月, 2013 1 次提交
    • C
      Segregate add'l long-running and performance tests · 68e3b777
      Chris Beams 提交于
       - Add TestGroup#LONG_RUNNING to distinguish from #PERFORMANCE, the
         former being tests that simply take a long time vs the latter being
         tests that are actually dependent on certain actions happening within
         a given time window and are thefore CPU-dependent.
      
      Issue: SPR-9984
      68e3b777
  14. 29 12月, 2012 3 次提交
  15. 31 1月, 2012 1 次提交
    • 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
  16. 21 12月, 2011 2 次提交
    • C
      Convert CRLF (dos) to LF (unix) · 88913f2b
      Chris Beams 提交于
      Prior to this change, roughly 5% (~300 out of 6000+) of files under the
      source tree had CRLF line endings as opposed to the majority which have
      LF endings.
      
      This change normalizes these files to LF for consistency going forward.
      
      Command used:
      
      $ git ls-files | xargs file | grep CRLF | cut -d":" -f1 | xargs dos2unix
      
      Issue: SPR-5608
      88913f2b
    • C
      Convert CRLF (dos) to LF (unix) · ae72cf2f
      Chris Beams 提交于
      Prior to this change, roughly 5% (~300 out of 6000+) of files under the
      source tree had CRLF line endings as opposed to the majority which have
      LF endings.
      
      This change normalizes these files to LF for consistency going forward.
      
      Command used:
      
      $ git ls-files | xargs file | grep CRLF | cut -d":" -f1 | xargs dos2unix
      
      Issue: SPR-5608
      ae72cf2f
  17. 29 1月, 2010 1 次提交
    • C
      SPR-6775 · ee2b1cde
      Costin Leau 提交于
      + remove class definitions for sticking around (by forcing eager metadata initialization)
      + improve cache size by eliminating the numbers of method metadata objects created
      + improve lookup access on method metadata
      ee2b1cde
  18. 28 1月, 2010 1 次提交
    • C
      SPR-6775 · b32c4cfb
      Costin Leau 提交于
      + replace the vanilla hashmap with a quick-and-dirty, JDK based, fixed LRU cache
      b32c4cfb