List of usage examples for org.springframework.web.client RestTemplate getClass
@HotSpotIntrinsicCandidate public final native Class<?> getClass();
From source file:org.springframework.boot.web.client.RestTemplateBuilderTests.java
@Test public void buildShouldReturnRestTemplate() throws Exception { RestTemplate template = this.builder.build(); assertThat(template.getClass()).isEqualTo(RestTemplate.class); }