1. 22 3月, 2019 1 次提交
  2. 07 9月, 2018 1 次提交
  3. 28 6月, 2018 2 次提交
    • P
      Use tabs rather than spaces in tests · a89e716c
      Phillip Webb 提交于
      Update tests to ensure that tabs are used instead of spaces. Also
      consistently apply a new line at the end of each file.
      
      Issue: SPR-16968
      a89e716c
    • P
      Polish test code · 1c25cec4
      Phillip Webb 提交于
      Polish a few issue identified when adding checkstyle to the
      build. Although checkstyle is not enforcing rules on tests,
      these are a few minor changes that are still worth making.
      
      Issue: SPR-16968
      1c25cec4
  4. 11 3月, 2018 1 次提交
  5. 13 1月, 2017 1 次提交
  6. 15 12月, 2016 1 次提交
  7. 04 11月, 2016 1 次提交
  8. 22 7月, 2016 1 次提交
  9. 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
  10. 15 7月, 2016 1 次提交
  11. 05 7月, 2016 1 次提交
  12. 25 3月, 2016 1 次提交
  13. 22 12月, 2015 1 次提交
  14. 18 12月, 2015 1 次提交
  15. 28 9月, 2015 1 次提交
    • S
      Migrate JUnit 3 tests to JUnit 4 · d5ee787e
      Sam Brannen 提交于
      This commit migrates all remaining tests from JUnit 3 to JUnit 4, with
      the exception of Spring's legacy JUnit 3.8 based testing framework that
      is still in use in the spring-orm module.
      
      Issue: SPR-13514
      d5ee787e
  16. 20 8月, 2015 1 次提交
  17. 03 5月, 2015 1 次提交
  18. 21 10月, 2014 1 次提交
  19. 16 7月, 2014 1 次提交
  20. 22 4月, 2014 1 次提交
  21. 26 3月, 2014 1 次提交
    • A
      Improved StAX<->SAX bridge · f2f355e7
      Arjen Poutsma 提交于
      Improved the SAX to StAX (and vice-versa) bridge exposed via StaxUtils.
      The old integration had some issues with namespace declaration
      attributes, brought to light in a XMLUnit upgrade.
      
      Issue: SPR-11549
      f2f355e7
  22. 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
  23. 26 11月, 2013 1 次提交
  24. 14 5月, 2013 1 次提交
  25. 19 3月, 2013 1 次提交
  26. 07 3月, 2013 1 次提交
  27. 02 1月, 2013 2 次提交
    • P
      Move spring-build-junit into spring-core · 65fb26f8
      Phillip Webb 提交于
      Move code from spring-build-junit into spring-core/src/test along with
      several other test utility classes. This commit removes the temporary
      spring-build-junit project introduced in commit
      b083bbde.
      65fb26f8
    • P
      Fix [deprecation] compiler warnings · 6626a387
      Phillip Webb 提交于
      Fix deprecation compiler warnings by refactoring code or applying
      @SuppressWarnings("deprecation") annotations. JUnit tests of
      internally deprecated classes are now themselves marked as
      @Deprecated.
      
      Numerous EasyMock deprecation warnings will remain until the
      migration to mockito can be completed.
      6626a387
  28. 29 12月, 2012 6 次提交
  29. 17 9月, 2012 1 次提交
    • A
      Preserve comments when using JibxMarshaller · f191a55b
      Arjen Poutsma 提交于
      Prior to this commit, JibxMarshaller used a SAX ContentHandler to
      marshal to StAX XMLEventWriters, which inadvertently resulted in the
      deletion of XML comments.
      
      After this commit, JibxMarshaller adapts the XMLEventWriter into an
      XMLStreamWriter and comments are preserved.
      
      Issue: SPR-9768
      f191a55b
  30. 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