1. 22 3月, 2019 1 次提交
  2. 12 4月, 2016 1 次提交
  3. 19 3月, 2016 5 次提交
  4. 28 7月, 2015 1 次提交
    • S
      Redesign MockMvcHtmlUnitDriverBuilder API · 9023cf6a
      Sam Brannen 提交于
      This commit introduces a dedicated build() method in
      MockMvcHtmlUnitDriverBuilder to replace createDriver(). In addition,
      the configureDriver() method has been renamed to withDelegate() and now
      returns the builder for further customization.
      
      This commit also overhauls the Javadoc for static factory methods and
      the class-level Javadoc in MockMvcHtmlUnitDriverBuilder for greater
      clarity to end users.
      
      Issues SPR-13158
      9023cf6a
  5. 27 7月, 2015 4 次提交
    • R
      Add Assume PERFORMANCE to needed HtmlUnit Tests · e998c450
      Rob Winch 提交于
      Some of the HtmlUnit Tests required an internet connection. This
      caused failures when running offline.
      
      This commit adds Assume PERFORMANCE to those tests so they are
      only ran when the PERFORMANCE group is selected.
      
      Issue: SPR-13158
      e998c450
    • S
      Polish tests for HtmlUnit support · 0b0a5a9e
      Sam Brannen 提交于
      0b0a5a9e
    • S
      Polish MockMvc HtmlUnit Support · d21ad299
      Sam Brannen 提交于
      - formatting
      - code style
      - organized imports
      - precondition assertions
      - suppressed warnings
      - Javadoc enhancements
      
      Issue: SPR-13158
      d21ad299
    • R
      Introduce support for HtmlUnit in Spring MVC Test · b73e3942
      Rob Winch 提交于
      This commit introduces integration between MockMvc and HtmlUnit, thus
      simplifying end-to-end testing when using HTML-based views and enabling
      developers to do the following.
      
       - Easily test HTML pages using tools such as HtmlUnit, WebDriver, & Geb
         without the need to deploy to a Servlet container
      
       - Test JavaScript within pages
      
       - Optionally test using mock services to speed up testing
      
       - Share logic between in-container, end-to-end tests and
         out-of-container integration tests
      
      Issue: SPR-13158
      b73e3942