Package org.springframework.boot.test.TestRestTemplate

Examples of org.springframework.boot.test.TestRestTemplate.CustomHttpComponentsClientHttpRequestFactory


  @Test
  public void options() throws Exception {
    TestRestTemplate template = new TestRestTemplate(
        HttpClientOption.ENABLE_REDIRECTS);
    CustomHttpComponentsClientHttpRequestFactory factory = (CustomHttpComponentsClientHttpRequestFactory) template
        .getRequestFactory();
    RequestConfig config = factory.getRequestConfig();
    assertThat(config.isRedirectsEnabled(), equalTo(true));
  }
View Full Code Here

TOP

Related Classes of org.springframework.boot.test.TestRestTemplate.CustomHttpComponentsClientHttpRequestFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.