1. 06 3月, 2015 1 次提交
  2. 10 3月, 2014 1 次提交
  3. 21 11月, 2013 2 次提交
  4. 24 7月, 2013 1 次提交
    • R
      Add TestGroup.CUSTOM_COMPILATION · f7c0795c
      Rob Winch 提交于
      Previously building with JDK > 1.8 b88 caused test failures due to errors
      with custom compilers like Jibx and Jasper reports.
      
      This commit adds a new TestGroup named CUSTOM_COMPILATION that allows the
      CI server to continue to run these tests but allow committers to ignore
      these tests.
      f7c0795c
  5. 17 5月, 2013 1 次提交
  6. 26 2月, 2013 2 次提交
  7. 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
  8. 02 1月, 2013 1 次提交
    • 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
  9. 29 12月, 2012 1 次提交
    • P
      Introduce 'spring-build-junit' subproject · b083bbde
      Phillip Webb 提交于
      Introduce new 'spring-build-junit' subproject containing shared
      JUnit utilities and classes to be used by other test cases. This
      project is for internal use within the framework, and therefore
      creates no artifacts to be published to any repository.
      
      The initial code includes support for JUnit Assumptions that can
      be used to determine when a test should run. Tests can be skipped
      based on the running JDK version, logging level or based on specific
      'groups' that have activated via a Gradle property.
      
      It is intended that sources within the spring-build-junit project be
      folded into spring-core/src/test/java, pending some Gradle work that
      will facilitate sharing test output across subprojects; therefore this
      commit should be seen as a temporary solution.
      
      Issue: SPR-9984
      b083bbde