1. 15 11月, 2019 2 次提交
  2. 17 8月, 2019 1 次提交
  3. 24 5月, 2019 2 次提交
  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. 06 5月, 2019 1 次提交
  6. 23 3月, 2019 1 次提交
  7. 22 3月, 2019 1 次提交
  8. 21 7月, 2016 1 次提交
    • M
      Update xmlunit library to version 2.1.0 · 3635c9db
      Marius Grama 提交于
      xmlunit 2.1.0 is the latest release for xmlunit.
      Most of the xmlunit functionality used within spring-framework
      was done through the xmlunit 1.x helper class
      `org.custommonkey.xmlunit.XMLAssert`.
      
      As of xmlunit 2.0.0 most of the XML comparison methods are done
      through hamcrest matchers exposed by the xmlunit-matchers
      library. In some cases during the migration, the matchers
      had to be customized with custom `NodeMatcher` or
      `DifferenceEvaluator` instances in order to keep the assertions
      correct (they were performed with xmlunit 1.x previously).
      
      Issue: SPR-14043
      3635c9db
  9. 20 7月, 2016 1 次提交
  10. 05 7月, 2016 1 次提交
  11. 02 7月, 2014 1 次提交
  12. 22 4月, 2014 1 次提交
    • P
      Clean up spring-web tests warnings · d00d0b02
      Philippe Marschall 提交于
      Clean up compiler warnings in the tests of spring-web. This commit
      adds type parameters to all the types (mostly `List` and `Map`).
      
      After this commit the only warnings in spring-web left are in
      * `MockExpressionEvaluator` this can't be fixed until JSP-EL is fixed
      * `Jackson2ObjectMapperFactoryBeanTests#testSetModules` that code
         would never compile with generics.
      d00d0b02
  13. 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
  14. 05 3月, 2010 1 次提交